home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWSemEvt / Include / FWDscOpr.h < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.5 KB  |  44 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWDscOpr.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWDSCOPR_H
  11. #define FWDSCOPR_H
  12.  
  13. #ifndef FWDESC_H
  14. #include "FWDesc.h"
  15. #endif
  16.  
  17. //========================================================================================
  18. //    forward declarations
  19. //========================================================================================
  20.  
  21. class FW_CPropertyDesignator;
  22. class FW_CColor;
  23. class FW_CString;
  24. class FW_MScriptable;
  25.  
  26. FW_CDesc& operator<< (FW_CDesc& desc, const FW_CDesc& other);    
  27. const FW_CDesc& operator>> (const FW_CDesc& desc, FW_CDesc& other);
  28.  
  29. FW_CDesc& operator<< (FW_CDesc& desc, ODDescType typeValue);    
  30. const FW_CDesc& operator>> (const FW_CDesc& desc, ODDescType& typeValue);
  31.  
  32. FW_CDesc& operator<< (FW_CDesc& desc, long value);    
  33. const FW_CDesc& operator>> (const FW_CDesc& desc, long& value);
  34.  
  35. FW_CDesc& operator<< (FW_CDesc& desc, const FW_CColor& color);
  36. const FW_CDesc& operator>> (const FW_CDesc& desc, FW_CColor& color);
  37.  
  38. FW_CDesc& operator<< (FW_CDesc& desc, const FW_SPlatformPoint& thePoint);
  39. const FW_CDesc& operator>> (const FW_CDesc& desc, FW_SPlatformPoint& thePoint);
  40.  
  41. void FW_InsertScriptableIntoDesc(const FW_MScriptable* scriptable, FW_CDesc& desc);
  42. FW_MScriptable* FW_ExtractScriptableFromDesc(const FW_CDesc& desc);
  43.  
  44. #endif // FWDSCOPR_H